home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AI Game Programming Wisdom
/
AIGameProgrammingWisdom.iso
/
SourceCode
/
11 Learning
/
01 Manslow
/
GPExample
/
CGPORNode.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
2001-10-07
|
377 b
|
23 lines
//GPExample
//Copyright John Manslow
//29/09/2001
#ifndef _GPORNode_
#define _GPORNode_
#include "CGPBinaryNode.h"
class CGP;
//See inherited class for comments
class CGPORNode : public CGPBinaryNode
{
public:
CGPORNode();
~CGPORNode();
virtual CGPNode *pGetCopy(CGP*);
virtual double dEvaluate(void);
virtual char *psGetString(char*);
};
#endif